home *** CD-ROM | disk | FTP | other *** search
/ .net Business / NETB01.ISO / pc / PCSoftware / RCEdit v1.0 / RCEdit.msi / Instal01.cab / _6E6B16F22FCD11D4A98C00104B9A8B22 < prev    next >
Encoding:
Text File  |  1998-06-05  |  380 b   |  20 lines

  1. // declare timer variable for conditional compare
  2. myID_stat = null;
  3.  
  4. // Clear window stat messages after x seconds
  5.  
  6.     function clearstat() {
  7.         window.status="";
  8.     }
  9.  
  10. // Display stat message
  11.  
  12.     function statmsg(txt) {
  13.         if (myID_stat != null)
  14.         {
  15.             clearTimeout(myID_stat);
  16.         }
  17.         window.status = txt;
  18.         myID_stat = setTimeout("clearstat()",1500);
  19.         return true;
  20.     }